home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 0643A.ZIP / BROWSE / 2SCREEN.DOC < prev    next >
Text File  |  1987-04-06  |  2KB  |  48 lines

  1. Documentation file for 2SCREEN.PRG - Dbase BROWSE-like utility
  2.  
  3.  
  4.     This documentation was written by me to add to the .PRG file. The .PRG file
  5. was originally published in PC MAGAZINE April 31 issue. The reader who sent
  6. it in is Dung Quoc Vu (no kidding!) from Anaheim, CA. Mr. Vu addressed what
  7. I thought was a problem with developing Dbase for others to use. What he has
  8. done is created a program that simulates the BROWSE function in Dbase. The
  9. main difference being that with BROWSE, the user has the capability of
  10. changing data. This allows you to develop inqury screens similar to BROWSE,
  11. but without the dangers invovlved.
  12.  
  13.     The program is written as a standalone routine as opposed to a subroutine,
  14. but can be easily modified as a subroutine called by another program. This
  15. program will run with all versions of Dbase. However, if you are not using
  16. Dbase III+, you will have to take out the IIF and INKEY() sections and
  17. replace them with your own.
  18.  
  19.      To run 2screen you will need to create a database with the follwoing
  20. spec's:
  21.  
  22. Structure for database: C:2screen.dbf
  23. Number of data records:       0
  24. Date of last update   : 04/06/87
  25. Field  Field Name  Type       Width
  26.     1  NAME        Character     20
  27.     2  TITL        Character     22
  28.     3  CO          Character     25
  29.     4  STR         Character     25
  30.     5  CITY        Character     14
  31.     6  ST          Character      2
  32.     7  ZIP         Character      5
  33. ** Total **                     114
  34.  
  35.     I have included this .dbf file with no data in it if you care to use it. You
  36. will need to enter at least 16 records to see how the program works. To use
  37. the program once you have typed 'do 2screen' you can use the pgup,pgdn,left,
  38. and right arrows to scroll the screen or 'x' or escape to exit.
  39.  
  40.     If you have any questions about how or what this program does,even thought I
  41. didn't write it, I'll be glad to try to help. Personally I found this
  42. routine very helpful in setting up inquiry scrrens for clients to use.
  43.  
  44. thanx,
  45.         Gary Blatt
  46.  
  47.  
  48.